home *** CD-ROM | disk | FTP | other *** search
- //*****************************************************************************
- // C_UpWind.prg
- // Up Window class for OBJECT v2.03
- // Copyright (c) 1991, JHK, JHK-Software, Piestany
- // Compile with: /N/M/W/A
- //-----------------------------------------------------------------------------
-
- #include "Object.ch" //this is the same as Window class,
- //but Paint() do not show (ID) and ()
- create class UpWindow from Window
- export:
- method New=UpWindowNew //o:New()
- endclass
-
-
- //*****************************************************************************
- // UpWindow:New() --> self
- // default values for this object
- //
- constructor UpWindowNew()
- ::UpFlag:=true
- return(self)
-
- //------------------------------------------------------- eof (c)JHK ----------
-
-